home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 21 / Cream of the Crop 21 (Terry Blount) (October 1996).iso / bbs / dao23a.zip / NEW.TXT < prev    next >
Text File  |  1996-09-14  |  3KB  |  67 lines

  1.  
  2. HOW TO CREATE A SINGLE-SESSION "CD PLUS" TYPE DISC
  3. --------------------------------------------------
  4.  
  5. A "CD Plus" disc (also known as "CD Extra"), is a disc that contains
  6. both data and audio tracks. It is similar to a mixed-mode disc except
  7. that the data track is hidden in such a way that a normal audio CD
  8. player will not see it, but a computer CDROM drive will. The new
  9. "CD Plus" standard specifies that these type of discs be written in
  10. multiple sessions (with audio in the first session and data in the
  11. second), but there is an easier way to make this type of disc in a
  12. single session. This method is very popular and continues to be
  13. used by the CDROM industry.
  14.  
  15. WARNING: Some CD recorders will not allow you to make this type of
  16. disc because they restrict the length of the first track's pregap
  17. to three seconds in length. Also, some CDROM drives will not properly
  18. read these discs.
  19.  
  20. The "trick" is to hide the data track in the pregap (INDEX 0) of the
  21. first audio track so that a normal audio CD player will not see it,
  22. but a computer CDROM drive will.
  23.  
  24. STEP 1 - Create an ISO9660 image of the data that you wish to hide.
  25.          You can use MAKEISO.EXE or any Windows based ISO9660 image 
  26.          builder.
  27.  
  28. STEP 2 - Convert the ISO9660 image file to RAW sector format using
  29.          the ISO2RAW.EXE utility. You *must* use both the /POSTGAP
  30.          and /SCRAMBLE options!
  31.  
  32. STEP 3 - Get a directory listing of the RAW data file and divide the
  33.          file's length by 2352 to determine the number of frames the
  34.          data will occupy on the disc (if you didn't get a whole number,
  35.          then you did something wrong). Convert this number to minutes,
  36.          seconds, and frames (at 75 frames per second).
  37.  
  38. STEP 4 - This is where it gets a little tricky... Since you are
  39.          writing the data into the pregap of the first audio track,
  40.          you have to fool everything into thinking that the data is
  41.          really audio. This means that you must attach the raw data
  42.          onto the beginning of the first audio file. Presently, there
  43.          is no utility to do this, so you're on your own. If the first
  44.          audio track is in a WAV file, then you will have to figure
  45.          out how to attach the raw data and properly update the WAV
  46.          file header fields. If your audio data is in a straight
  47.          binary file, then this task is a little easier because you
  48.          don't have to deal with updating the WAV file header.
  49.  
  50. STEP 5 - Write the CUE SHEET (this is just an example)...
  51.  
  52.          FILE TRACK1.WAV AUDIO 2352
  53.            TRACK 01
  54.            INDEX 00 00:00:00       (data track is hidden here)
  55.            INDEX 01 MM:SS:FF       (numbers calculated in Step 3).
  56.          FILE TRACK2.WAV AUDIO 2352
  57.            TRACK 02
  58.            INDEX 00 00:00:00
  59.          FILE TRACK3.WAV AUDIO 2352
  60.            TRACK 03
  61.            INDEX 00 00:00:00
  62.  
  63. STEP 6 - Use DAO.EXE to record the new disc. If you are using binary
  64.          audio files instead of WAV files, then make sure that you
  65.          use the /BIN option.
  66.  
  67.